home *** CD-ROM | disk | FTP | other *** search
/ Delphi Developer's Kit 1996 / Delphi Developer's Kit 1996.iso / power / glyphpro / glyphpro.dpr < prev    next >
Text File  |  1995-12-22  |  287b  |  16 lines

  1. program Glyphpro;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'MAIN.PAS' {Form1},
  6.   Options in 'OPTIONS.PAS' {FormOptions},
  7.   Seldir in 'SELDIR.PAS' {FormSelectDirectory};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Title := 'GlyphPro';
  13.   Application.CreateForm(TForm1, Form1);
  14.   Application.Run;
  15. end.
  16.